home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': 'PSP 7 Preset Converter',
- 'Copyright': '',
- 'Description': 'Small thin oil BrushStrokes preset',
- 'Host': 'Paint Shop Pro 8',
- 'Host Version': '8.00',
- }
-
- def Preset_BrushStrokes():
- return {
- 'GeneralSettings': {
- 'AutoActionMode': 0,
- 'ExecutionMode': 0
- },
- 'Opacity': 50,
- 'Width': 4,
- 'Length': 10,
- 'Angle': 102,
- 'Color': (0, 0, 0),
- 'Density': 25,
- 'Bristles': 256,
- 'Softness': 20,
- }
-
- def Do(Environment):
- App.Do(Environment, 'BrushStrokes', Preset_BrushStrokes())
-